home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 4 / Meeting Pearls Vol. IV (1996)(GTI - Schatztruhe)[!].iso / Pearls / etech / Spice / lib / scripts / spinit < prev   
Text File  |  1995-06-27  |  2KB  |  73 lines

  1. * Standard spice and nutmeg init file
  2. *   Changed to make postscript the default
  3. *   hardcopy device
  4. alias exit quit
  5. alias acct rusage all
  6. set x11lineararcs
  7.  
  8. *
  9. * New stuff below:
  10. *
  11.  
  12. set noaskquit
  13. set slowplot
  14.  
  15. set editor=se
  16.  
  17. * Default printer set to PostScript
  18. *   ...and some magic to make the output look
  19. *   better.  To actually print something, use
  20. *   "hardcopy <filename>" instead of "plot".
  21. set hcopydevtype=postscript
  22. set hcopylinewidth=0.1
  23. set hcopyscale = 2
  24.  
  25. * Plot screen defines
  26. *   The last 3 should be obvious.  Leaving the
  27. *   width or height unset will leave them 
  28. *   unspecified for the OpenScreenTags() call
  29. *   (so the OS will use some reasonable defaults).
  30. *   If the depth and mode are not set, then they
  31. *   will be taken from the default public screen.
  32. *   If the width/height is larger than the screen
  33. *   can handle, then the screen will scroll only
  34. *   if the plot window is the current window.
  35. *   No checking is done on any of these values;
  36. *   The only potential problem I see here (besides
  37. *   screens refusing to open) is that some people
  38. *   may think that their monitor can do DBLNTSC
  39. *   or productivity just because they dragged those
  40. *   drivers into their devs/Monitors directory.
  41. *   There is no compensation for aspect ratios
  42. *   (yet).
  43. *set screenwidth=1600
  44. *set screenheight=1200
  45. *set screendepth=1
  46.  
  47. *  Uncomment the following to request:
  48.  
  49. * PAL super-hires laced
  50. *    (not very pretty because of the aspect ratio).
  51. *set screenmode=29024
  52.  
  53. * Plain Lores 
  54. *set screenmode=0
  55.  
  56. * A2024 10Hz
  57. *set screenmode=41000
  58. * A2024 15Hz
  59. *set screenmode=49000
  60.  
  61. * Shell stuff
  62. *   The following  will cause "spice" to pass
  63. *   commands it does not recognize to to the shell.
  64. *   ("What?"... type "dir" in spice to find out.)
  65. *   To use AmigaDOS commands that conflict with
  66. *   spice commands use "shell <...>".
  67. set unixcom
  68. *   Enable AmigaGuide help.  The path to the help file needs to
  69. *   be changed to match your local configuration.  I couldn't think
  70. *   of a clever way to find it. :)
  71. *   Pre-3.x users will need to replace "multiview" with "amigaguide".
  72. alias aghelp shell run sys:utilities/multiview :src/source/spiceguide/spice3f4.guide
  73.